home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{19A9C0A9-A225-11D1-ACE5-B33573316762}#1.0#0"; "SPBAR.OCX"
- Begin VB.Form Form1
- Caption = "Style Progress Bar's VB5 sample"
- ClientHeight = 2544
- ClientLeft = 48
- ClientTop = 336
- ClientWidth = 3816
- LinkTopic = "Form1"
- ScaleHeight = 2544
- ScaleWidth = 3816
- StartUpPosition = 3 'Windows Default
- Begin STYLEPROGRESSBARLibCtl.SPBar SPBar1
- Height = 372
- Left = 2040
- OleObjectBlob = "vb5sampl.frx":0000
- TabIndex = 0
- Top = 2040
- Width = 1692
- End
- Begin VB.Timer Timer1
- Interval = 500
- Left = 3360
- Top = 120
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Timer1_Timer()
- If SPBar1.Value >= SPBar1.Max Then
- SPBar1.Value = SPBar1.Min
- End If
- SPBar1.Value = SPBar1.Value + 10
- End Sub
-